Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632849 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/style.css
100 Views
0 Comments
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}

hr {
width: 500px;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/index.html
275 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Let's Sudoku🧩</title>
<link rel="stylesheet" href="style.css" />
readme.md cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/readme.md
160 Views
0 Comments
# Sudoku Game 🧩
---
## Describtion:
> It's a typical **Sudoku game** with 10X10 box is provided with some pre defined numbers . At bottom there a slot box with value 1-9 , from where you have to select number at have to put into main box, for every wrong moves count will be increasing.
Let's finis it with minimum Moves 👍.

---
## Tech Stack Used:
script.js cody/swapnilsparsh/30DaysOfJavaScript/107 - Sudoku Game/script.js
162 Views
0 Comments

var numSelected = null;
var tileSelected = null;

var errors = 0;

var board = [
"--74916-5",